home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 685 b | 36 lines | [TEXT/MPS ] |
- ;
- ; Generic LaserWriter.a
- ;
- ; this file contains a jump table for the generic LaserWriter driver
- ;
- ; © 1992-1994 Apple Computer Inc.
- ;
- ;
-
- STRING ASIS
- CASE OBJ
-
-
- DriverJumpTable PROC EXPORT
-
- EXPORT referenceCount
-
- referenceCount DC.L 0
-
- IMPORT DriverPostScriptScanPrinterText
- JMP DriverPostScriptScanPrinterText
-
- IMPORT DriverPostScriptScanStatusText
- JMP DriverPostScriptScanStatusText
-
- IMPORT DriverOpenConnection
- JMP DriverOpenConnection
-
- IMPORT DriverCleanupOpenConnection
- JMP DriverCleanupOpenConnection
-
- IMPORT DriverCloseConnection
- JMP DriverCloseConnection
-
- END
-